Link to this headingGo Lang

  • Statically Linked Files
    • No dependency issues
    • Hard to detect malware
    • Reverse Engineering time consuming

Link to this headingCross Compile

GOOS=windows go build GOOS=linux GOARCH=ppc64 go build

Link to this headingStrip Binaries

go build -o hello_strip -ldflags "-s" hello.go